FeeEndpointInfo.fromJson constructor Null safety
Implementation
factory FeeEndpointInfo.fromJson(Map<String, dynamic> json) {
bool? auth = json['authentication_required'];
return FeeEndpointInfo(json['enabled'], auth != null ? auth : false);
}
factory FeeEndpointInfo.fromJson(Map<String, dynamic> json) {
bool? auth = json['authentication_required'];
return FeeEndpointInfo(json['enabled'], auth != null ? auth : false);
}