fromMap static method

NullableReflectSubObject fromMap(
  1. Map<String, dynamic> r
)

Implementation

static NullableReflectSubObject fromMap(Map<String,dynamic> r){_;Map<String,dynamic> m=r.$nn;return NullableReflectSubObject(value: m.$c('value') ?  ArtifactCodecUtil.da(m['value'], String) as String : "something",anotherValue: m.$c('anotherValue') ?  ArtifactCodecUtil.da(m['anotherValue'], int) as int : 42,);}