LinkParams constructor

const LinkParams({
  1. required Map<String, String>? pathParams,
  2. required Map<String, String>? queryParams,
  3. required String? state,
})

Implementation

const LinkParams({
  required this.pathParams,
  required this.queryParams,
  required this.state,
});