appimageGetimagesGet method

Future<Response<List<FwStandardModelsFwAppImageModel>>> appimageGetimagesGet({
  1. String? uniqueid1,
  2. String? uniqueid2,
  3. String? uniqueid3,
  4. String? description,
  5. String? rectype,
})

@param uniqueid1 @param uniqueid2 @param uniqueid3 @param description @param rectype

Implementation

Future<chopper.Response<List<FwStandardModelsFwAppImageModel>>>
    appimageGetimagesGet(
        {String? uniqueid1,
        String? uniqueid2,
        String? uniqueid3,
        String? description,
        String? rectype}) {
  generatedMapping.putIfAbsent(FwStandardModelsFwAppImageModel,
      () => FwStandardModelsFwAppImageModel.fromJsonFactory);

  return _appimageGetimagesGet(
      uniqueid1: uniqueid1,
      uniqueid2: uniqueid2,
      uniqueid3: uniqueid3,
      description: description,
      rectype: rectype);
}