createTopic method
Future<void>
createTopic({
- required String topicName,
- List<
TopicMetaData> metaData = const [], - dynamic callback(
- FlyResponse response
This method is used to create the topic.
Implementation
Future<void> createTopic(
{required String topicName,
List<TopicMetaData> metaData = const [],
Function(FlyResponse response)? callback}) async {
throw UnimplementedError('createTopic has not been implemented.');
}