call method

void call({
  1. required bool web,
})
inherited

Implementation

void call({required bool web}) {
  if (!web) {
    FreeFEOSInterface.instance = SystemEntry();
    FreeFEOSPlatform.instance = MethodChannelFreeFEOS();
  } else {
    FreeFEOSInterface.instance = DefaultEntry();
    FreeFEOSPlatform.instance = DefaultPlatform();
  }
}