FineTuningError.fromJson constructor
Creates a FineTuningError from JSON.
Implementation
factory FineTuningError.fromJson(Map<String, dynamic> json) {
return FineTuningError(
code: json['code'] as String?,
message: json['message'] as String?,
param: json['param'] as String?,
);
}