foreignKey method
Converts this string to a foreign key name.
Implementation
String foreignKey() =>
'${uncapitalize().replaceAll(RegExp(r'[^a-zA-Z0-9]'), '')}_id';
Converts this string to a foreign key name.
String foreignKey() =>
'${uncapitalize().replaceAll(RegExp(r'[^a-zA-Z0-9]'), '')}_id';