createTimeTable method
Implementation
Future<TimeTable> createTimeTable(String sdkId, TimeTable entity) async {
final res = await _methodChannel.invokeMethod<String>(
'TimeTableApi.createTimeTable',
{
"sdkId": sdkId,
"entity": jsonEncode(TimeTable.encode(entity)),
}
).catchError(convertPlatformException);
if (res == null) throw AssertionError("received null result from platform method createTimeTable");
final parsedResJson = jsonDecode(res);
return TimeTable.fromJSON(parsedResJson);
}