ImageNote.fromJson constructor
ImageNote.fromJson(
- Map json_
Implementation
ImageNote.fromJson(core.Map json_)
: this(
fingerprint: json_.containsKey('fingerprint')
? Fingerprint.fromJson(
json_['fingerprint'] as core.Map<core.String, core.dynamic>)
: null,
resourceUrl: json_.containsKey('resourceUrl')
? json_['resourceUrl'] as core.String
: null,
);