Module constructor

Module({
  1. String? feeCollectorName,
  2. String? authority,
})

Implementation

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