MssqlTriggerSchema constructor

MssqlTriggerSchema({
  1. required String name,
  2. required bool isDisabled,
  3. required bool isInsteadOf,
  4. Set<String> events = const <String>{},
})

Implementation

MssqlTriggerSchema({
  required this.name,
  required this.isDisabled,
  required this.isInsteadOf,
  Set<String> events = const <String>{},
}) : events = Set<String>.unmodifiable(events);