start method
Starts a live update.
Implementation
@override
Future<LiveUpdateHandle> start(LiveUpdateContent content) async {
final response = await methodChannel.invokeMapMethod<Object?, Object?>(
'start',
content.toMap(),
);
return LiveUpdateHandle.fromMap(
response ?? <Object?, Object?>{'id': content.id},
);
}