kemproApiV2DevicesIdSignaturesPost method

Future<Response> kemproApiV2DevicesIdSignaturesPost({
  1. required int? id,
  2. List<int>? file,
  3. String? email,
  4. dynamic action,
  5. String? firstName,
  6. String? lastName,
})

Upload signature file to Blob Storage. Update DB with file name and email. @param id

Implementation

Future<chopper.Response> kemproApiV2DevicesIdSignaturesPost({
  required int? id,
  List<int>? file,
  String? email,
  dynamic action,
  String? firstName,
  String? lastName,
}) {
  return _kemproApiV2DevicesIdSignaturesPost(
      id: id,
      file: file,
      email: email,
      action: action,
      firstName: firstName,
      lastName: lastName);
}