toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final description = this.description;
  final displayName = this.displayName;
  final id = this.id;
  final immutable = this.immutable;
  return {
    'description': ?description,
    'displayName': ?displayName,
    'id': ?id,
    'immutable': ?immutable,
  };
}