toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final description = this.description;
  final id = this.id;
  final members = this.members;
  final name = this.name;
  final resourceName = this.resourceName;
  final status = this.status;
  final type = this.type;
  return {
    'description': ?description,
    'id': ?id,
    'members': ?members,
    'name': ?name,
    'resourceName': ?resourceName,
    'status': ?status,
    'type': ?type,
  };
}