Verify.fromJson constructor

Verify.fromJson(
  1. Map json_
)

Implementation

Verify.fromJson(core.Map json_)
    : this(
        hasPendingVerification: json_.containsKey('hasPendingVerification')
            ? json_['hasPendingVerification'] as core.bool
            : null,
      );