hasWriteAccess method

Future<bool> hasWriteAccess(
  1. String sdkId,
  2. TimeTable timeTable
)

Implementation

Future<bool> hasWriteAccess(String sdkId, TimeTable timeTable) async {
	final res = await _methodChannel.invokeMethod<String>(
		'TimeTableApi.hasWriteAccess',
		{
			"sdkId": sdkId,
			"timeTable": jsonEncode(TimeTable.encode(timeTable)),
		}
	);
	if (res == null) throw AssertionError("received null result from platform method hasWriteAccess");
	final parsedResJson = jsonDecode(res);
	return (parsedResJson as bool);
}