GetEmotePackEmotesResponse constructor

GetEmotePackEmotesResponse({
  1. Iterable<Emote>? emotes,
})

Implementation

factory GetEmotePackEmotesResponse({
  $core.Iterable<Emote>? emotes,
}) {
  final _result = create();
  if (emotes != null) {
    _result.emotes.addAll(emotes);
  }
  return _result;
}