notifierType property

String get notifierType

CommandNotifier type with data type and arg record type For no-arg commands, argRecordType is () (empty record)

Implementation

String get notifierType {
  final argRecordType = nonFamilyParams.isEmpty
      ? '()'
      : nonFamilyParams.toRecordType();
  return 'CommandNotifier<$dataType, $argRecordType>';
}