Permission constructor

Permission({
  1. String? matches,
  2. bool? ok,
})

Implementation

factory Permission({
  $core.String? matches,
  $core.bool? ok,
}) {
  final _result = create();
  if (matches != null) {
    _result.matches = matches;
  }
  if (ok != null) {
    _result.ok = ok;
  }
  return _result;
}