setBaseUrl static method

Future<bool?> setBaseUrl(
  1. String baseUrl
)

Implementation

static Future<bool?> setBaseUrl(String baseUrl) async {
  try {
    final bool? result =
        await _channel.invokeMethod<bool>('setBaseUrl', baseUrl);
    return result;
  } catch (error) {
    throw 'Failed to set Berbix baseUrl! Details: $error';
  }
}