App constructor

App({
  1. Int64? protocol,
  2. String? software,
})

Implementation

factory App({
  $fixnum.Int64? protocol,
  $core.String? software,
}) {
  final _result = create();
  if (protocol != null) {
    _result.protocol = protocol;
  }
  if (software != null) {
    _result.software = software;
  }
  return _result;
}