toString method
Returns a readable string containing all codec fields.
Implementation
@override
String toString() {
return 'MediaCodecCapability('
'name: $name, '
'isEncoder: $isEncoder, '
'supportedTypes: $supportedTypes, '
'isHardwareAccelerated: $isHardwareAccelerated, '
'isSoftwareOnly: $isSoftwareOnly, '
'isVendor: $isVendor, '
'supportedVideoTypes: $supportedVideoTypes, '
'supportedAudioTypes: $supportedAudioTypes'
')';
}