camis_core 0.0.1+1 copy "camis_core: ^0.0.1+1" to clipboard
camis_core: ^0.0.1+1 copied to clipboard

A new Flutter package project.

Naming Convention #

let's say our library name is Camis_Core

Language Feature Format Example Filename
Interface [YOUR_LIBRARY_NAME]Int[YOUR_INTERFACE_NAME] Camis_Core_Int_Test int_test.dart
Extension [YOUR_LIBRARY_NAME]Ext[YOUR_EXTENSION_NAME] Camis_Core_Ext_Test ext_test.dart
Mixin [YOUR_LIBRARY_NAME]Mix[YOUR_MIXIN_NAME] Camis_Core_Mix_Test mix_test.dart
Class [YOUR_LIBRARY_NAME]Cla[YOUR_CLASS_NAME] Camis_Core_Cla_Test cla_test.dart
Typedef [YOUR_LIBRARY_NAME]Typ[YOUR_TYPE_DEFINITION_NAME] Camis_Core_Typ_Test typ_test.dart
Enum [YOUR_LIBRARY_NAME]Enu[YOUR_ENUM_NAME] Camis_Core_Enu_Test enu_test.dart

If a file contains multiple language feature such as interface, extension, class, etc then you can names the filename without follow table above.