Skip to content

Instantly share code, notes, and snippets.

@buntagonalprism
Last active June 7, 2018 03:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save buntagonalprism/04be6712d4941d4bc988273b59b047d8 to your computer and use it in GitHub Desktop.
Save buntagonalprism/04be6712d4941d4bc988273b59b047d8 to your computer and use it in GitHub Desktop.
Individual Dart Class template file for inclusion in Medium article
#set( $nameparts = $NAME.split("_"))
#set( $namepart = '')
#set( $classname = '')
#foreach( $namepart in $nameparts )
#set( $classname = $classname + $namepart.substring(0, 1).toUpperCase() + $namepart.substring(1))
#end
class $classname {
// TODO: add class properties and methods
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment