isLowerCaseUnderScoreWithDots function

bool isLowerCaseUnderScoreWithDots(
  1. String id
)

Returns true if this id is lower_camel_case_with_underscores_or.dots.

Implementation

bool isLowerCaseUnderScoreWithDots(String id) =>
    // ignore: deprecated_member_use_from_same_package
    _lowerCaseUnderScoreWithDots.hasMatch(id);