Delegate.fromJson constructor

Delegate.fromJson(
  1. Map json_
)

Implementation

Delegate.fromJson(core.Map json_)
    : this(
        delegateEmail: json_.containsKey('delegateEmail')
            ? json_['delegateEmail'] as core.String
            : null,
        verificationStatus: json_.containsKey('verificationStatus')
            ? json_['verificationStatus'] as core.String
            : null,
      );