centerCoordinates property

Future<List<Object?>> centerCoordinates

Get currect coordinates of center view

Implementation

Future<List<Object?>> get centerCoordinates => _methodChannel
    .invokeMethod<List<Object?>>('getCenterCoordinates')
    .then<List<Object?>>((dynamic result) => result);