getSupportedAntibanding method
Gets the supported antibanding values.
Returns null
if antibanding setting is not supported.
Implementation
Future<List<String>?> getSupportedAntibanding() async {
final List<Object?>? areas =
await _channel.$getSupportedAntibanding(this) as List<Object?>?;
return areas?.cast<String>();
}