ProcessUserCommand constructor

ProcessUserCommand({
  1. String? userID,
  2. int? type,
  3. Int64? createTime,
  4. String? uuid,
  5. String? value,
})

Implementation

factory ProcessUserCommand({
  $core.String? userID,
  $core.int? type,
  $fixnum.Int64? createTime,
  $core.String? uuid,
  $core.String? value,
}) {
  final result = create();
  if (userID != null) result.userID = userID;
  if (type != null) result.type = type;
  if (createTime != null) result.createTime = createTime;
  if (uuid != null) result.uuid = uuid;
  if (value != null) result.value = value;
  return result;
}