ConfirmDeviceResponse.fromJson constructor

ConfirmDeviceResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ConfirmDeviceResponse.fromJson(Map<String, dynamic> json) {
  return ConfirmDeviceResponse(
    userConfirmationNecessary: json['UserConfirmationNecessary'] as bool?,
  );
}