UserMain constructor

UserMain({
  1. Key? key,
  2. required String? location,
  3. required String? state,
})

Implementation

UserMain({Key? key, required this.location, required this.state})
    : super(key: key);