setInitialData method
void
setInitialData({})
Implementation
void setInitialData({
String? loggedInUserUuid,
required String projectId,
required bool isDistributor,
required bool isWareHouseMgr,
List<InventoryTransportTypes>? transportTypes,
UserModel? loggedInUser,
}) {
_projectId = projectId;
_loggedInUserUuid = loggedInUserUuid;
_transportType = transportTypes;
_isDistributor = isDistributor;
_isWareHouseMgr = isWareHouseMgr;
_transportType = transportTypes;
_loggedInUser = loggedInUser;
}