在flutter中扩展Mobx中的商店类的正确方法是什么?无论我尝试在哪里放置“扩展”,我都会收到编译错误。
class Booking = _Booking with _$Booking;
abstract class _Booking with Store {}
class FlightBooking = _FlightBooking with _$FlightBooking ;
abstract class _FlightBooking with Store {}
Run Code Online (Sandbox Code Playgroud) flutter ×1