check method

  1. @override
String? check()
override

Implementation

@override
String? check() {
  if (ids.isEmpty) {
    throw const TransmissionCheckError("ids must not be empty");
  }
  return null;
}