TuningExample.fromJson constructor

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

Implementation

factory TuningExample.fromJson(Map<String, dynamic> json) {
  return TuningExample(
    textInput: json['textInput'],
    output: json['output'] ?? '',
  );
}