getShape method

Future<String> getShape()

Fetches the shape of the watch face

Implementation

Future<String> getShape() async {
  try {
    return (await _channel.invokeMethod<String>('getShape'))!;
  } on PlatformException catch (e, st) {
    // Default to round
    debugPrint('Error calling getShape: $e\n$st');
    return 'round';
  }
}