toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final fingerprint = this.fingerprint;
  final name = this.name;
  final preservedState = this.preservedState;
  final status = this.status;
  return {
    'fingerprint': ?fingerprint,
    'name': ?name,
    'preservedState': ?preservedState,
    'status': ?status,
  };
}