isValidFieldName property

bool get isValidFieldName

Check if this is a valid Odoo field name

Implementation

bool get isValidFieldName =>
    RegExp(r'^[a-z][a-z0-9_]*$').hasMatch(this);