cubitStateGridFileContent constant

String const cubitStateGridFileContent

Implementation

static const String cubitStateGridFileContent = """part of '<screen_name>_cubit.dart';

class <state_name> {
<state_name>({this.currentState = ActivityState.loading});

ActivityState currentState;

<state_name> copy() {
  return <state_name>(currentState: currentState);
}
}""";