createKeyword method

Future<Keyword> createKeyword(
  1. Keyword frontEndMigration
)

Implementation

Future<Keyword> createKeyword(Keyword frontEndMigration) async {
	return await CardinalSdkPlatformInterface.instance.apis.keyword.createKeyword(
		_sdkId,
		frontEndMigration,
	);
}