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