changeImage method

Future changeImage(
  1. String filePath
)

Implementation

Future changeImage(String filePath) async {
  print("Damon - Involking change Image Flutter");
  return _channel.invokeMethod('changeImage', <String, dynamic>{
    'filePath': filePath,
  });
}