RuntimeVersion constructor

const RuntimeVersion({
  1. required String specName,
  2. required String implName,
  3. required int authoringVersion,
  4. required int specVersion,
  5. required int implVersion,
  6. required List<ApiVersion> apis,
  7. required int transactionVersion,
  8. required int stateVersion,
})

Implementation

const RuntimeVersion({
  required this.specName,
  required this.implName,
  required this.authoringVersion,
  required this.specVersion,
  required this.implVersion,
  required this.apis,
  required this.transactionVersion,
  required this.stateVersion,
});