AuthenticationCodeTypeFlashCall.fromJson constructor

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

Parse from a json

Implementation

factory AuthenticationCodeTypeFlashCall.fromJson(Map<String, dynamic> json) =>
    AuthenticationCodeTypeFlashCall(
      pattern: json['pattern'],
    );