AttestationNote.fromJson constructor

AttestationNote.fromJson(
  1. Map json_
)

Implementation

AttestationNote.fromJson(core.Map json_)
  : this(
      hint:
          json_.containsKey('hint')
              ? Hint.fromJson(
                json_['hint'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );