fromJson static method
Implementation
static MKey? fromJson(value, {MSchemaRef? mtype}) {
final v = value;
if (v is MKey) return v;
if (value == null) return null;
return _parse("$value", mtype: mtype)!;
}
static MKey? fromJson(value, {MSchemaRef? mtype}) {
final v = value;
if (v is MKey) return v;
if (value == null) return null;
return _parse("$value", mtype: mtype)!;
}