getSupportedWhiteBalance method

Future<List<String>?> getSupportedWhiteBalance()

Gets the supported white balance.

Returns null if white balance setting is not supported.

See: getWhiteBalance

Implementation

Future<List<String>?> getSupportedWhiteBalance() async {
  final List<Object?>? sizes =
      await _channel.$getSupportedWhiteBalance(this) as List<Object?>?;
  return sizes?.cast<String>();
}