removeTemplate method
Remove the notification template from this device.
Implementation
@override
Future<bool> removeTemplate() async {
final success = await methodChannel
.invokeMethod<bool>('AzNotificationHub.removeTemplate');
return success ?? false;
}