toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final etag = this.etag;
  final id = this.id;
  final kind = this.kind;
  final role = this.role;
  final scope = this.scope;
  return {
    'etag': ?etag,
    'id': ?id,
    'kind': ?kind,
    'role': ?role,
    'scope': ?scope,
  };
}