GenerateModel.fromJson constructor
Implementation
factory GenerateModel.fromJson(
Map<String, dynamic>? otherData,
) {
try {
return fromJsonOrNull(otherData)!;
} catch (e) {
assert(false, 'GenerateModel.fromJson: $e');
rethrow;
}
}