KeyValueModel.fromJsonCountResultatByFormCode constructor

KeyValueModel.fromJsonCountResultatByFormCode(
  1. Map<String, dynamic> map
)

Implementation

factory KeyValueModel.fromJsonCountResultatByFormCode(
    Map<String, dynamic> map) {
  return KeyValueModel(
    key : TypeSafeConversion.nullSafeString( map['formCode'] ),
    value : TypeSafeConversion.nullSafeString( map['nbrResultat'] ),
  );
}