newInstance method

MModel? newInstance([
  1. dynamic json
])

Implementation

MModel? newInstance([json]) {
  return mmodelRegistry.instantiate(
      json: json ?? <String, dynamic>{}, type: this);
}