toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final format = this.format;
  final key = this.key;
  final keySpec = this.keySpec;
  final notAfterTime = this.notAfterTime;
  final notBeforeTime = this.notBeforeTime;
  return {
    'format': ?format,
    'key': ?key,
    'keySpec': ?keySpec,
    'notAfterTime': ?notAfterTime,
    'notBeforeTime': ?notBeforeTime,
  };
}