$artifactFromMap<T> function
Implementation
T $artifactFromMap<T>(Map<String,dynamic> m)=>T==Person ?$Person.fromMap(m) as T:T==Animal ?$Animal.fromMap(m) as T:T==Dog ?$Dog.fromMap(m) as T:T==Zoo ?$Zoo.fromMap(m) as T:T==ListenerModel ?$ListenerModel.fromMap(m) as T:T==FeatureModel ?$FeatureModel.fromMap(m) as T:T==ReflectModel ?$ReflectModel.fromMap(m) as T:T==SchemaModel ?$SchemaModel.fromMap(m) as T:throw Exception();