createFeature static method

Future<void> createFeature({
  1. required String featureName,
})

create new feature

Implementation

static Future<void> createFeature({
  required String featureName,
}) async =>
    await CreateFeature().createNewFeature(
      featureName: featureName,
    );