toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final annotations = this.annotations;
  final createTime = this.createTime;
  final deleteTime = this.deleteTime;
  final displayName = this.displayName;
  final etag = this.etag;
  final keyString = this.keyString;
  final name = this.name;
  final restrictions = this.restrictions;
  final serviceAccountEmail = this.serviceAccountEmail;
  final uid = this.uid;
  final updateTime = this.updateTime;
  return {
    'annotations': ?annotations,
    'createTime': ?createTime,
    'deleteTime': ?deleteTime,
    'displayName': ?displayName,
    'etag': ?etag,
    'keyString': ?keyString,
    'name': ?name,
    'restrictions': ?restrictions,
    'serviceAccountEmail': ?serviceAccountEmail,
    'uid': ?uid,
    'updateTime': ?updateTime,
  };
}