toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final codeId = this.codeId;
  final creationTime = this.creationTime;
  final etag = this.etag;
  final kind = this.kind;
  final lastTimeUsed = this.lastTimeUsed;
  final name = this.name;
  final userKey = this.userKey;
  return {
    'codeId': ?codeId,
    'creationTime': ?creationTime,
    'etag': ?etag,
    'kind': ?kind,
    'lastTimeUsed': ?lastTimeUsed,
    'name': ?name,
    'userKey': ?userKey,
  };
}