Module constructor

Module({
  1. String? authority,
})

Implementation

factory Module({
  $core.String? authority,
}) {
  final $result = create();
  if (authority != null) {
    $result.authority = authority;
  }
  return $result;
}