baseViewModel top-level constant

String const baseViewModel

Implementation

const baseViewModel = """
import 'package:flutter/material.dart';

// State management sınıfları için base bir viewModel
mixin BaseViewModel {
  late BuildContext viewModelContext;
}

""";