id property
String
get
id
The id column.
Implementation
String get id {
if (isAndroid) {
return '_id';
} else if (isDarwin) {
return 'localIdentifier';
} else if (isOhos) {
return 'uri';
}
throw UnsupportedError('Unsupported platform with id');
}