MethodSnapshot.fromJson constructor

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

Implementation

factory MethodSnapshot.fromJson(Map<String, dynamic> json) {
  return MethodSnapshot(
    apiKeyRequired: json['apiKeyRequired'] as bool?,
    authorizationType: json['authorizationType'] as String?,
  );
}