layout static method

Layout<Map<String, dynamic>> layout({
  1. String? property,
})

Implementation

static Layout<Map<String, dynamic>> layout({String? property}) {
  return LayoutConst.struct([
    SuiIntentScope.layout(property: "scope"),
    SuiIntentVersion.layout(property: "version"),
    SuiIntentApplicationId.layout(property: 'applicationId')
  ], property: property);
}