FinchView constructor

FinchView({
  1. required String widget,
  2. Map<String, Object?> params = const {},
})

Creates an instance of FinchView. The constructor requires a widget path, with an optional params map that can be used to pass additional data to the view during rendering.

Implementation

FinchView({
  required this.widget,
  this.params = const {},
});