FetchMatchesResponse constructor

FetchMatchesResponse({
  1. Match? match,
})

Implementation

factory FetchMatchesResponse({
  $3.Match? match,
}) {
  final _result = create();
  if (match != null) {
    _result.match = match;
  }
  return _result;
}