decode static method

FlutterJobStatusRequest decode(
  1. Object result
)

Implementation

static FlutterJobStatusRequest decode(Object result) {
  result as List<Object?>;
  return FlutterJobStatusRequest(
    userId: result[0]! as String,
    jobId: result[1]! as String,
    includeImageLinks: result[2]! as bool,
    includeHistory: result[3]! as bool,
    partnerId: result[4]! as String,
    timestamp: result[5]! as String,
    signature: result[6]! as String,
  );
}