UpdateAvatar constructor

UpdateAvatar({
  1. List<int>? newBytes,
})

Implementation

factory UpdateAvatar({
  $core.List<$core.int>? newBytes,
}) {
  final _result = create();
  if (newBytes != null) {
    _result.newBytes = newBytes;
  }
  return _result;
}