fromJson static method
Inherited by: DiffEntityTypeDelete DiffEntityTypeInsert DiffEntityTypeReplace
Implementation
static DiffEntityTypeInsert? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return const DiffEntityTypeInsert();
}