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