hasWriteAccess method
Implementation
Future<bool> hasWriteAccess(String sdkId, Invoice invoice) async {
final res = await _methodChannel.invokeMethod<String>(
'InvoiceApi.hasWriteAccess',
{
"sdkId": sdkId,
"invoice": jsonEncode(Invoice.encode(invoice)),
}
);
if (res == null) throw AssertionError("received null result from platform method hasWriteAccess");
final parsedResJson = jsonDecode(res);
return (parsedResJson as bool);
}