ImageNote.fromJson constructor

ImageNote.fromJson(
  1. 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_['resourceUrl'] as core.String?,
    );