FetchVerificationOptionsResponse.fromJson constructor

FetchVerificationOptionsResponse.fromJson(
  1. Map json_
)

Implementation

FetchVerificationOptionsResponse.fromJson(core.Map json_)
  : this(
      options:
          (json_['options'] as core.List?)
              ?.map(
                (value) => VerificationOption.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
    );