OnlineService constructor

OnlineService({
  1. required String roleName,
  2. List<String>? supportedDataTypes,
})

Implementation

OnlineService({
  required String roleName,
  List<String>? supportedDataTypes,
}) : super(
        roleName: roleName,
        isMasterDevice: false,
        supportedDataTypes: supportedDataTypes,
      );