snakeCase property
      
      String
      get
      snakeCase
      
    
    
Gets the text in snake_case format.
Example: "hello world".snakeCase returns "hello_world"
Implementation
String get snakeCase => ReCase(this).snakeCase;Gets the text in snake_case format.
Example: "hello world".snakeCase returns "hello_world"
String get snakeCase => ReCase(this).snakeCase;