fromJson static method

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

Implementation

static AuthenticationCodeTypeFlashCall? fromJson(Map<String, dynamic>? json) {
  if (json == null) {
    return null;
  }

  return AuthenticationCodeTypeFlashCall(
    pattern: (json['pattern'] as String?) ?? '',
  );
}