StoresServiceCreateRequest constructor

StoresServiceCreateRequest({
  1. String? entityUuid,
  2. String? userComment,
  3. Int64? locationId,
  4. String? name,
  5. String? code,
  6. String? description,
  7. String? inchargeUsername,
  8. String? phone,
})

Implementation

factory StoresServiceCreateRequest({
  $core.String? entityUuid,
  $core.String? userComment,
  $fixnum.Int64? locationId,
  $core.String? name,
  $core.String? code,
  $core.String? description,
  $core.String? inchargeUsername,
  $core.String? phone,
}) {
  final result = create();
  if (entityUuid != null) result.entityUuid = entityUuid;
  if (userComment != null) result.userComment = userComment;
  if (locationId != null) result.locationId = locationId;
  if (name != null) result.name = name;
  if (code != null) result.code = code;
  if (description != null) result.description = description;
  if (inchargeUsername != null) result.inchargeUsername = inchargeUsername;
  if (phone != null) result.phone = phone;
  return result;
}